home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d13 / pcroct89.arc / BATCH.ARC / QMOVE.BAT < prev    next >
DOS Batch File  |  1990-03-21  |  219b  |  10 lines

  1. echo off
  2. rem copies file(s), then deletes original(s) if requested
  3. echo copying %1 to %2
  4. copy %1 %2
  5. echo Press Ctrl-C to quit.
  6. echo Press any other key to delete source files.
  7. pause>nul
  8. del %1
  9. echo %1 deleted
  10.